body{
    background-color: #ffffff;
    background:transparent url(../images/bg.png) no-repeat;
    background-size: cover;
    font-size: 14px;
}
.text-center{
    text-align: center;
    width: 100%;
}
.align-center{
    margin: 0px auto;
}
.welcome-box{
    background: transparent url(../images/welcome_box.png) no-repeat;
    width: 328px;
    height: 192px;
    /* position: absolute;
    top: 150px; */
    margin: 150px auto 0px;
}
.title{
    color: #cb1e28;
    /* text-transform: uppercase; */
    margin: 50px auto;
    font-weight: bold;
    text-align: center;
    font-size: xx-large;
}
::placeholder {
    color: #cb1e28;
    opacity: 1; /* Firefox */
}

::-ms-input-placeholder { /* Edge 12 -18 */
    color: #cb1e28;
}
.filled-button{
    background: #cb1e28;
    color: white;
    border: #cb1e28 1px solid;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    width:100%;
    padding: 5px;
    cursor: pointer;
}
.filled-button:hover{
    background: white;
    color: #cc3f46;
}
.non-filled-button{
    background: white;
    color: #cb1e28;
    border: #cb1e28 1px solid;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    text-transform: uppercase;
    font-weight: bold;
    width:100%;
    padding: 5px;
    cursor: pointer;
}
.non-filled-button:hover{
    background: #cc3f46;
    color: white;
}
.login-container{
    width:328px;
    margin: auto;
}
.form-elem{
    padding: 10px;
}
.input-box{
    color: #cb1e28;
    border: #cb1e28 2px solid;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 10px;
    width: 100%;
}
.input-box-with-icon{
    padding: 10px 10px 10px 75px !important;
}
.user-icon{
    background: transparent url(../images/username_icon.png) no-repeat;
    background-position: 0px;
    background-size: contain;
}
.password-icon{
    background: transparent url(../images/password_icon.png) no-repeat;
    background-position: 0px;
    background-size: contain;
}

/* Customize the label (the container) */
.checkbox-container {
    color: #cb1e28;
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
/* Hide the browser's default checkbox */
.checkbox-container input[type=checkbox] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
  }

  /* Create a custom checkbox */
  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #ffe4e4;
    border: #cb1e28 1px solid;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

  /* On mouse-over, add a grey background color */
  .checkbox-container:hover input ~ .checkmark {
    background-color: #fd6767;
  }

  /* When the checkbox is checked, add a blue background */
  .checkbox-container input:checked ~ .checkmark {
    background-color: #cb1e28;
  }

  /* Create the checkmark/indicator (hidden when not checked) */
  .checkmark:after {
    content: "";
    position: absolute;
    display: none;
  }

  /* Show the checkmark when checked */
  .checkbox-container input:checked ~ .checkmark:after {
    display: block;
  }

  /* Style the checkmark/indicator */
  .checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }
.form-elem a{
    color: #fc3d3d;
    font-size: larger;
}
.form-elem a:hover{
    color: #cb1e28;
}
.form-elem a:visited{
    color: #fc3d3d;
}
